home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Python / protos / marshal_protos2.h < prev    next >
Text File  |  1996-12-15  |  426b  |  12 lines

  1.  
  2. /* marshal.c part 2*/
  3.  
  4. static int r_string ( char *s , int n , RFILE *p );
  5. static int r_short ( RFILE *p );
  6. static long r_long ( RFILE *p );
  7. static object *r_object ( RFILE *p );
  8. static object *marshal_dump ( object *self , object *args );
  9. static object *marshal_load ( object *self , object *args );
  10. static object *marshal_dumps ( object *self , object *args );
  11. static object *marshal_loads ( object *self , object *args );
  12.